Each of the four 'In' commands covered in this session performs the designated operation on a certain element positioned in the specified location:
GetTextIn : returns the graphical element or text located the area of the application screen specified by the following parameters: element/text, direction, and its dimensions (width and height).
VerifyIn: Searches for a designated element in the application's UI in order to verify that the element in fact exists:
If the element is found, the execution of the test will continue.
If the element is not found, an exception will be thrown and execution of the test is terminated.
IsFoundIn: Searches for a designated element and determines whether and element corresponding to that sought exists:
If the element if found, the value True is returned.
If the element is not found, the value False is returned.
ClickIn : S earches for a designated element and clicks another element located near it.